PokéAPI · JSON Structure
Pokeapi Item Structure
PokéAPI Item structure.
Type: object
Properties: 13
PokémonOpen SourceOpen DataRESTGraphQLGamingEducationalCommunity
Item is a JSON Structure definition published by PokéAPI, describing 13 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.
Properties
id
name
cost
fling_power
fling_effect
attributes
category
effect_entries
flavor_text_entries
game_indices
held_by_pokemon
names
sprites
Meta-schema: https://json-structure.org/meta/core/v0/#
JSON Structure
{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/pokeapi/refs/heads/main/json-structure/pokeapi-item-structure.json",
"name": "Item",
"description": "Pok\u00e9API Item structure.",
"type": "object",
"properties": {
"id": {
"type": "int32"
},
"name": {
"type": "string"
},
"cost": {
"type": "int32"
},
"fling_power": {
"type": "int32",
"nullable": true
},
"fling_effect": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Slug name of the referenced resource."
},
"url": {
"type": "string",
"format": "uri",
"description": "Canonical URL of the referenced resource."
}
}
},
"attributes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Slug name of the referenced resource."
},
"url": {
"type": "string",
"format": "uri",
"description": "Canonical URL of the referenced resource."
}
}
}
},
"category": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Slug name of the referenced resource."
},
"url": {
"type": "string",
"format": "uri",
"description": "Canonical URL of the referenced resource."
}
}
},
"effect_entries": {
"type": "array",
"items": {
"type": "object",
"properties": {
"effect": {
"type": "string"
},
"short_effect": {
"type": "string"
},
"language": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Slug name of the referenced resource."
},
"url": {
"type": "string",
"format": "uri",
"description": "Canonical URL of the referenced resource."
}
}
}
}
}
},
"flavor_text_entries": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"version_group": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Slug name of the referenced resource."
},
"url": {
"type": "string",
"format": "uri",
"description": "Canonical URL of the referenced resource."
}
}
},
"language": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Slug name of the referenced resource."
},
"url": {
"type": "string",
"format": "uri",
"description": "Canonical URL of the referenced resource."
}
}
}
}
}
},
"game_indices": {
"type": "array",
"items": {
"type": "object"
}
},
"held_by_pokemon": {
"type": "array",
"items": {
"type": "object"
}
},
"names": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"language": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Slug name of the referenced resource."
},
"url": {
"type": "string",
"format": "uri",
"description": "Canonical URL of the referenced resource."
}
}
}
}
}
},
"sprites": {
"type": "object",
"properties": {
"default": {
"type": "string",
"nullable": true
}
}
}
}
}