{
	"NextbikeCustomers": {
		"Type": "AWS::DynamoDB::Table",
		"Properties": {
			"AttributeDefinitions": [
				{ "AttributeName": "id", "AttributeType": "S" },
				{ "AttributeName": "loginkey", "AttributeType": "S" }
			],
			"KeySchema": [{ "AttributeName": "id", "KeyType": "HASH" }],
			"ProvisionedThroughput": { "ReadCapacityUnits": 1, "WriteCapacityUnits": 1 },
			"TableName": "maas-tsp-dev-nextbike-customers",
			"GlobalSecondaryIndexes": [
				{
					"IndexName": "loginkey",
					"KeySchema": [{ "AttributeName": "loginkey", "KeyType": "HASH" }],
					"Projection": { "ProjectionType": "ALL" },
					"ProvisionedThroughput": { "ReadCapacityUnits": 1, "WriteCapacityUnits": 1 }
				}
			]
		}
	}
}
